var max=0;function AsylumNavLink(parentId,linkId,order,href,linkText,target,width)
{this.linkId=linkId;this.parentId=parentId;this.order=order;this.href=href;this.linkText=linkText;this.target=target;this.width=width;};function AsylumNav(contId,layout,offset)
{this.menuCont=document.getElementById(contId);this.layout=layout;this.offset=(typeof offset=='undefined'?'Right':offset);this.menuItems=new Object();this.clickUnderCreated=false;};AsylumNav.prototype.AddLink=function(parentId,linkId,order,href,linkText,target,width)
{if(typeof this.menuItems[parentId]=='undefined')
{this.menuItems[parentId]=new Object();}
if(typeof width=="undefined")width=false;this.menuItems[parentId][linkId]=new AsylumNavLink(parentId,linkId,order,href,linkText,target,width);if(order>max){max=order;}};AsylumNav.prototype.CreateLevel=function(levelId,idPrefix)
{obj=this;div=document.createElement('div');div.id=idPrefix+levelId;div.levelId=levelId;div.idPrefix=idPrefix;div.className='levelDiv';div.onmouseout=function(e){obj.HideLevel(e);};div.subLevels=new Object();if(levelId!='0')
{div.style.visibility='hidden';div.className+=' subLevel';div.style.position='absolute';}
else
{div.className+=' topLevel';}
if(this.layout=='Horizontal')
{div.style.position='absolute';}
div.style.zIndex=10;if(this.menuCont){this.menuCont.appendChild(div);}
for(i=0;i<=max;i++){for(linkId in this.menuItems[levelId]){if(this.menuItems[levelId][linkId].order==i){linkDiv=document.createElement('div');linkDiv.id='asylumNavLinkDiv'+linkId;linkDiv.linkId=linkId;linkDiv.levelId=levelId;linkDiv.className='linkDiv';if(levelId=="0"){linkDiv.className+=" topLevel";if(this.menuItems[levelId][linkId].width){linkDiv.style.width=this.menuItems[levelId][linkId].width+"px";}}
div.appendChild(linkDiv);navLink=this.menuItems[levelId][linkId];a=document.createElement('a');a.id='asylumNavLink'+linkId;a.linkType='navMenu';a.linkId=linkId;a.levelId=navLink.parentId;a.parentId=navLink.parentId;if(navLink.href==''||navLink.href=='#')
{a.href='#';a.target='';a.style.cursor='default';}
else
{a.href=navLink.href;a.target=navLink.target;}
if(this.layout=='Vertical')
{a.innerHTML=navLink.linkText;}
else
{a.innerHTML=navLink.linkText.split(' ').join('&nbsp;');}
a.onmouseover=function(){obj.ShowLevel(this);};linkDiv.appendChild(a);if(linkId==pageId)
{a.className='activeLink';linkDiv.className+=' activeLink';topLink=this.GetTopLevelLink(navLink);if(typeof this.menuItems[topLink.linkId]!='undefined'&&navLink.levelId!='0')
{try{document.getElementById('asylumNavLink'+topLink.linkId).className+=' activeLink';document.getElementById('asylumNavLinkDiv'+topLink.linkId).className+=' activeLink';}catch(e){}}
if(document.getElementById("clickUnder")!=null)
{this.CreateClickUnder(topLink,true);}}
else
{}
if(typeof this.menuItems[linkId]!='undefined')
{div.subLevels[linkId]=true;}}}}
return div;};AsylumNav.prototype.Construct=function()
{if(this.menuCont==null){return;}
var obj=this;for(levelId in this.menuItems)
{this.CreateLevel(levelId,'asylumNavLevel');}
if(this.layout=='Vertical')
{if(typeof document.getElementById('tplMainSectors')!=null)
{ms=document.getElementById('tplMainSectors');ms.style.height=ms.offsetHeight;}}
else
{this.menuCont.style.height=document.getElementById('asylumNavLevel0').offsetHeight+'px';}
this.CreateBreadCrumbs();};AsylumNav.prototype.CreateClickUnder=function(navLink,active)
{if(typeof doneClickUnder=="undefined"){doneClickUnder=true;}else{return;}
if(document.getElementById("clickUnder")==null)return;obj=this;var linkId;if(this.layout=='Vertical')
{clickDiv=document.createElement('div');clickDiv.id="clickUnder";document.getElementById("clickUnder").appendChild(clickDiv);linkDiv=document.getElementById('asylumNavLinkDiv'+navLink.linkId);linkDiv.appendChild(clickDiv);}
else
{clickDiv=document.getElementById("clickUnder");}
var linkCount=0;for(linkId in this.menuItems[navLink.linkId])
{linkCount++;clickLinkDiv=document.createElement('div');clickLinkDiv.className='clickLinkDiv';clickLink=this.menuItems[navLink.linkId][linkId];txt=document.createTextNode(' ');clickDiv.appendChild(txt);a=document.createElement('a');a.id='asylumNavClickLink'+clickLink.linkId;a.className='clickLink';a.linkType='clickLink';a.linkId=linkId;a.levelId=clickLink.parentId;a.parentId=clickLink.parentId;if(clickLink.href==''||clickLink.href=='#'){a.href='#';a.target='';a.style.cursor='default';}else{a.href=clickLink.href;a.target=clickLink.target;}
if(this.layout=="Vertical"){a.innerHTML=clickLink.linkText;}else if(this.layout=="Horizontal-SubMenu"){if(clickLink.linkText.substring(0,1)==" "){a.innerHTML=clickLink.linkText.split(" ").join("&nbsp;");}else{a.innerHTML=clickLink.linkText;}}else{a.innerHTML=clickLink.linkText.split(" ").join("&nbsp;");}
a.onmouseover=function(){obj.HideAllLevels();obj.ShowLevel(this);};a.onmouseout=function(e){obj.HideLevel(e);};clickLinkDiv.appendChild(a);if(linkId==pageId)
{a.className='activeLink';clickLinkDiv.className+=' activeLink';}
clickDiv.appendChild(clickLinkDiv);txt=document.createTextNode(' ');clickDiv.appendChild(txt);}
if(linkCount==0||active==false)
{clickDiv.className='inactiveClickUnder';}
else
{clickDiv.className='activeClickUnder';}};AsylumNav.prototype.GetTopLevelLink=function(navLink)
{if(navLink.parentId=='0')
{return(navLink);}
while(1==1)
{navLink=this.GetParentLink(navLink);if(typeof navLink.parentId!='undefined')
{if(navLink.parentId=='0')
{break;}}}
return(navLink);};AsylumNav.prototype.GetParentLink=function(navLink)
{var levelId;var linkId;for(levelId in this.menuItems)
{for(linkId in this.menuItems[levelId])
{parNavLink=this.menuItems[levelId][linkId];if(parNavLink.linkId==navLink.parentId)
{return(parNavLink);}}}};AsylumNav.prototype.GetXPos=function(obj)
{var curleft=0;if(obj.offsetParent)
{while(obj.offsetParent&&obj.id!='navMenuCont')
{curleft+=obj.offsetLeft;obj=obj.offsetParent;}}
else if(obj.x)
curleft+=obj.x;return curleft;};AsylumNav.prototype.GetYPos=function(obj)
{var curtop=0;if(obj.offsetParent)
{while(obj.offsetParent&&obj.id!='navMenuCont')
{curtop+=obj.offsetTop;obj=obj.offsetParent;}}
else if(obj.y)
curtop+=obj.y;return curtop;};AsylumNav.prototype.ShowLevel=function(el)
{levelId=el.linkId;this.currentLevelId=levelId;window.clearTimeout(this.timeoutId);this.HideSubLevels(el.levelId);if(typeof this.menuItems[levelId]=='undefined')
{return;}
if(el.linkType=='clickLink')
{eP=document.getElementById('asylumNavClickLink'+el.linkId);eL=document.getElementById('asylumNavLevel'+levelId);SwapClass(eL,'subLevel','clickUnderSubLevel');}
else
{eP=document.getElementById('asylumNavLink'+levelId);eL=document.getElementById('asylumNavLevel'+levelId);SwapClass(eL,'clickUnderSubLevel','subLevel');}
if(eP.parentId=='0')
{switch(this.offset)
{case'Right':offsetX=(eP.offsetWidth);offsetY=0;break;case'Left':offsetX=(-eL.offsetWidth);offsetY=0;break;case'Bottom':offsetX=0;offsetY=eP.offsetHeight;eL.style.minWidth=eP.offsetWidth;break;}}
else
{switch(this.offset)
{case'Left':offsetX=(-eL.offsetWidth);offsetY=0;break;default:offsetX=(eP.offsetWidth);offsetY=0;break;}}
pX=this.GetXPos(eP);pY=this.GetYPos(eP);lX=pX+offsetX;lY=pY+offsetY;eL.style.position='absolute';$(eL).css({left:lX,top:lY});eL.style.visibility='visible';};AsylumNav.prototype.GetLevelWidth=function(levelId)
{maxWidth=0;for(linkId in this.menuItems[levelId])
{a=document.getElementById('asylumNavLink'+linkId);thisWidth=a.offsetWidth;if(thisWidth>maxWidth)
{maxWidth=thisWidth;}}
return(maxWidth);};AsylumNav.prototype.HideSubLevels=function(levelId,omitLevelId)
{if(typeof omitLevelId=='undefined')
{omitLevelId='0';}
eL=document.getElementById('asylumNavLevel'+levelId);for(levelId in eL.subLevels)
{this.HideSubLevels(levelId);if(levelId!=omitLevelId)
{eL=document.getElementById('asylumNavLevel'+levelId);eL.style.visibility='hidden';}}};AsylumNav.prototype.HideLevel=function(e)
{window.clearTimeout(this.timeoutId);if(!e)e=window.event;var el=(e.relatedTarget)?e.relatedTarget:e.toElement;var obj=this;var funct=function(){obj._HideLevel(el);};this.timeoutId=window.setTimeout(funct,1000);};AsylumNav.prototype._HideLevel=function(el)
{if(!el||el.id.substr(0,9)!='asylumNav'||(el.id.substr(0,9)=='asylumNav'&&el.style.visibility=='hidden'))
{this.HideAllLevels();}};AsylumNav.prototype.HideAllLevels=function()
{for(levelId in this.menuItems)
{if(levelId!='0')
{eL=document.getElementById('asylumNavLevel'+levelId);if(eL!=null)eL.style.visibility='hidden';}}};AsylumNav.prototype.CreateBreadCrumbs=function()
{if(document.getElementById("breadCrumbs")!=null)
{crumbsCont=document.getElementById("breadCrumbs");crumbsCont.style.display='none';crumbs='';homeLink='';for(levelId in this.menuItems)
{for(linkId in this.menuItems[levelId])
{navLink=this.menuItems[levelId][linkId];if(homeLink=='')
{homeLink='<a href="'+navLink.href+'" target="'+navLink.target+'">'
+navLink.linkText+'</a> &gt; ';}
if(linkId==pageId)
{i=0;parNavLink=this.GetParentLink(navLink);while(typeof parNavLink=='object')
{i++;crumbs='<a href="'+parNavLink.href+'" target="'+parNavLink.target+'">'
+parNavLink.linkText+'</a> &gt; '+crumbs;parNavLink=this.GetParentLink(parNavLink);}
if(i>1)
{crumbsCont.style.display='block';crumbsCont.innerHTML=homeLink+crumbs+'<span class="activeCrumb">'+navLink.linkText+'</span>';}
return(true);}}}}};function RemoveClass(el,className)
{var replaceName=(el.className.match(' '+className)?' '+className:className);el.className=el.className.replace(replaceName,'');};function AddClass(el,className)
{RemoveClass(el,className);el.className+=' '+className;};function SwapClass(el,removeClassName,addClassName)
{RemoveClass(el,removeClassName);AddClass(el,addClassName);};;$(function() {for (var i in tasks) {window.setTimeout(tasks[i], 0);}});function initMenu(){};$(function(){$("#navMenu").navmenu({pageInfo:{"a48778":{"P":0,"ID":49071,"C":48778,"O":0,"U":"http:\/\/www.tuf.co.nz\/","N":"Home","T":"_top","R":"","RT":"_blank"},"a588524":{"P":48778,"ID":588526,"C":588524,"O":"1","U":"http:\/\/www.tuf.co.nz\/tuf-frontline-staff.html","N":"TUF for Frontline Staff","T":"_top","R":"","RT":"_blank"},"a588527":{"P":48778,"ID":588684,"C":588527,"O":"2","U":"http:\/\/www.tuf.co.nz\/tuf-managers.html","N":"TUF for Managers","T":"_top","R":"","RT":"_blank"},"a588528":{"P":48778,"ID":588685,"C":588528,"O":"3","U":"http:\/\/www.tuf.co.nz\/tuf-teams.html","N":"TUF for Teams","T":"_top","R":"","RT":"_blank"},"a588687":{"P":48778,"ID":589392,"C":588687,"O":"4","U":"http:\/\/www.tuf.co.nz\/tuf-licensing-plan.html","N":"TUF Licensing Plan","T":"_top","R":"","RT":"_blank"},"a48779":{"P":48778,"ID":49072,"C":48779,"O":"5","U":"http:\/\/www.tuf.co.nz\/angry-customer-specialists.html","N":"About Us","T":"_top","R":"","RT":"_blank"},"a49315":{"P":48779,"ID":49322,"C":49315,"O":"1","U":"http:\/\/www.tuf.co.nz\/john-faisandier.html","N":"John Faisandier","T":"_top","R":"","RT":"_blank"},"a49316":{"P":48779,"ID":49323,"C":49316,"O":"2","U":"http:\/\/www.tuf.co.nz\/playback-theatre-trainer.html","N":"Bev Hosking","T":"_top","R":"","RT":"_blank"},"a49317":{"P":48779,"ID":49324,"C":49317,"O":"3","U":"http:\/\/www.tuf.co.nz\/innovative-nurse-trainer.html","N":"Vanesa Valentine","T":"_top","R":"","RT":"_blank"},"a49318":{"P":48779,"ID":49325,"C":49318,"O":"4","U":"http:\/\/www.tuf.co.nz\/scientist-tuf-trainer.html","N":"Judy Broom","T":"_top","R":"","RT":"_blank"},"a49319":{"P":48779,"ID":77840,"C":49319,"O":"5","U":"http:\/\/www.tuf.co.nz\/effective-tuf-facilitator.html","N":"Fiona Boddy","T":"_top","R":"","RT":"_blank"},"a69095":{"P":48779,"ID":69474,"C":69095,"O":"6","U":"http:\/\/www.tuf.co.nz\/roletraining-tuf-facilitator.html","N":"Pip van Kuilenburg","T":"_top","R":"","RT":""},"a69734":{"P":48779,"ID":77828,"C":69734,"O":"7","U":"http:\/\/www.tuf.co.nz\/conflict-resolution-facilitator.html","N":"Simon Gurnsey","T":"_top","R":"","RT":"_blank"},"a73627":{"P":48779,"ID":77837,"C":73627,"O":"9","U":"http:\/\/www.tuf.co.nz\/socialworker-tuf-facilitator.html","N":"Colin Elliott","T":"_top","R":"","RT":"_blank"},"a81889":{"P":48779,"ID":101768,"C":81889,"O":"11","U":"http:\/\/www.tuf.co.nz\/iwi-worker-facilitator.html","N":"Chris Hill","T":"_top","R":"","RT":"_blank"},"a444199":{"P":48778,"ID":445513,"C":444199,"O":"7","U":"http:\/\/www.tuf.co.nz\/book","N":"The Book","T":"_top","R":"","RT":"_blank"},"a444201":{"P":444199,"ID":445512,"C":444201,"O":"1","U":"http:\/\/www.tuf.co.nz\/difficult-customers-review.html","N":"Add Your Book Review","T":"_top","R":"","RT":"_blank"},"a462293":{"P":444199,"ID":462294,"C":462293,"O":"2","U":"http:\/\/www.tuf.co.nz\/sarah-maclean-review.html","N":"Sarah Maclean Review","T":"_top","R":"","RT":"_blank"},"a445541":{"P":444199,"ID":446328,"C":445541,"O":"3","U":"http:\/\/www.tuf.co.nz\/difficult-customers-comments.html","N":"What others have said","T":"_top","R":"","RT":"_blank"},"a446329":{"P":444199,"ID":446428,"C":446329,"O":"5","U":"http:\/\/www.tuf.co.nz\/difficult-customers-book.html","N":"What's in it?","T":"_top","R":"","RT":"_blank"},"a446517":{"P":444199,"ID":446681,"C":446517,"O":"6","U":"http:\/\/www.tuf.co.nz\/difficult-customers-chapter.html","N":"Chapter Contents","T":"_top","R":"","RT":"_blank"},"a457448":{"P":444199,"ID":457457,"C":457448,"O":"7","U":"http:\/\/www.tuf.co.nz\/thriving-under-fire.html","N":"Read a Chapter","T":"_top","R":"","RT":"_blank"},"a446432":{"P":444199,"ID":447445,"C":446432,"O":"8","U":"http:\/\/www.tuf.co.nz\/buy-thriving-under.html","N":"Buy the Book","T":"_top","R":"","RT":"_blank"},"a446453":{"P":444199,"ID":446454,"C":446453,"O":"9","U":"http:\/\/www.tuf.co.nz\/john-faisandier-author.html","N":"About the Author","T":"_top","R":"","RT":"_blank"},"a446326":{"P":48778,"ID":446327,"C":446326,"O":"8","U":"http:\/\/www.tuf.co.nz\/client-feedback-difficult.html","N":"What Our Clients Say","T":"_top","R":"","RT":"_blank"},"a56749":{"P":48778,"ID":56750,"C":56749,"O":"9","U":"http:\/\/www.tuf.co.nz\/your-staff-morale.html","N":"TUF and Your Staff","T":"_top","R":"","RT":"_blank"},"a48780":{"P":48778,"ID":75261,"C":48780,"O":"10","U":"http:\/\/www.tuf.co.nz\/equip-your-staff.html","N":"TUF Situations","T":"_top","R":"","RT":"_blank"},"a49078":{"P":48780,"ID":49083,"C":49078,"O":"1","U":"http:\/\/www.tuf.co.nz\/difficult-internal-customers.html","N":"Internal Customers","T":"_top","R":"","RT":"_blank"},"a49079":{"P":48780,"ID":49084,"C":49079,"O":"2","U":"http:\/\/www.tuf.co.nz\/tuf-develops-empathy.html","N":"Develops Empathy","T":"_top","R":"","RT":"_blank"},"a49080":{"P":48780,"ID":49085,"C":49080,"O":"3","U":"http:\/\/www.tuf.co.nz\/tuf-immediate-results.html","N":"Immediate Results","T":"_top","R":"","RT":"_blank"},"a49081":{"P":48780,"ID":49086,"C":49081,"O":"4","U":"http:\/\/www.tuf.co.nz\/personal-communication-benefits.html","N":"Personal Benefits","T":"_top","R":"","RT":"_blank"},"a49082":{"P":48780,"ID":49087,"C":49082,"O":"5","U":"http:\/\/www.tuf.co.nz\/hidden-customer-problems.html","N":"Problem Not Always Obvious","T":"_top","R":"","RT":"_blank"},"a48781":{"P":48778,"ID":49074,"C":48781,"O":"11","U":"http:\/\/www.tuf.co.nz\/tuf-practical-approach.html","N":"TUF Approach","T":"_top","R":"","RT":"_blank"},"a119687":{"P":48781,"ID":119697,"C":119687,"O":"1","U":"http:\/\/www.tuf.co.nz\/blended-learning.html","N":"Blended Learning","T":"_top","R":"","RT":"_blank"},"a49279":{"P":48781,"ID":49298,"C":49279,"O":"2","U":"http:\/\/www.tuf.co.nz\/tuf-specialist-trainers.html","N":"Specialised","T":"_top","R":"","RT":"_blank"},"a49280":{"P":48781,"ID":49299,"C":49280,"O":"3","U":"http:\/\/www.tuf.co.nz\/tuf-programme-content.html","N":"Content","T":"_top","R":"","RT":"_blank"},"a49281":{"P":48781,"ID":49300,"C":49281,"O":"4","U":"http:\/\/www.tuf.co.nz\/tuf-systems-thinking.html","N":"Systems Thinking","T":"_top","R":"","RT":"_blank"},"a49282":{"P":48781,"ID":49301,"C":49282,"O":"5","U":"http:\/\/www.tuf.co.nz\/generative-learning-processes.html","N":"Process","T":"_top","R":"","RT":"_blank"},"a49283":{"P":48781,"ID":49302,"C":49283,"O":"6","U":"http:\/\/www.tuf.co.nz\/evaluation.html","N":"Evaluation","T":"_top","R":"","RT":"_blank"},"a48782":{"P":48778,"ID":49075,"C":48782,"O":"12","U":"http:\/\/www.tuf.co.nz\/tuf-programme-results.html","N":"TUF Results","T":"_top","R":"","RT":"_blank"},"a49285":{"P":48782,"ID":49303,"C":49285,"O":"1","U":"http:\/\/www.tuf.co.nz\/tuf-evaluation-results.html","N":"Measurable Improvement","T":"_top","R":"","RT":"_blank"},"a49286":{"P":48782,"ID":49304,"C":49286,"O":"2","U":"http:\/\/www.tuf.co.nz\/real-life-results.html","N":"Anecdotal Evidence","T":"_top","R":"","RT":"_blank"},"a49287":{"P":48782,"ID":49305,"C":49287,"O":"3","U":"http:\/\/www.tuf.co.nz\/high-participant-satisfaction.html","N":"Participant Satisfaction","T":"_top","R":"","RT":"_blank"},"a49604":{"P":48782,"ID":49605,"C":49604,"O":"4","U":"http:\/\/www.tuf.co.nz\/success-case-method.html","N":"Success Case Method","T":"_top","R":"","RT":"_blank"},"a48783":{"P":48778,"ID":49076,"C":48783,"O":"13","U":"http:\/\/www.tuf.co.nz\/tuf-programme-delivery.html","N":"How TUF Works","T":"_top","R":"","RT":"_blank"},"a119679":{"P":48783,"ID":119681,"C":119679,"O":"1","U":"http:\/\/www.tuf.co.nz\/preworkshop-e-learning.html","N":"E-learning","T":"_top","R":"","RT":"_blank"},"a49288":{"P":48783,"ID":49306,"C":49288,"O":"2","U":"http:\/\/www.tuf.co.nz\/tuf-programme-contents.html","N":"The Workshop","T":"_top","R":"","RT":"_blank"},"a49289":{"P":48783,"ID":49307,"C":49289,"O":"3","U":"http:\/\/www.tuf.co.nz\/tuf-programme-followup.html","N":"The Follow-up","T":"_top","R":"","RT":"_blank"},"a250723":{"P":48778,"ID":250741,"C":250723,"O":"14","U":"http:\/\/www.tuf.co.nz\/customer-service-media.html","N":"Media ","T":"_top","R":"","RT":"_blank"},"a153822":{"P":48778,"ID":155001,"C":153822,"O":"15","U":"http:\/\/www.tuf.co.nz\/customer-service-public.html","N":"Public Workshops","T":"_top","R":"","RT":"_blank"},"a592251":{"P":153822,"ID":592258,"C":592251,"O":"2","U":"http:\/\/www.tuf.co.nz\/public-workshops-wellington.html","N":"Public Workshops Wellington","T":"_top","R":"","RT":"_blank"},"a592230":{"P":153822,"ID":592244,"C":592230,"O":"3","U":"http:\/\/www.tuf.co.nz\/public-workshops-auckland.html","N":"Public Workshops Auckland","T":"_top","R":"","RT":"_blank"},"a280461":{"P":48778,"ID":280464,"C":280461,"O":"16","U":"http:\/\/www.tuf.co.nz\/newsletter-emtional-coaching.html","N":"Newsletters","T":"_top","R":"","RT":"_blank"},"a545056":{"P":280461,"ID":545058,"C":545056,"O":"1","U":"http:\/\/www.tuf.co.nz\/page545056.html","N":"2009 Newsletters","T":"_top","R":"","RT":"_blank"},"a545057":{"P":280461,"ID":545059,"C":545057,"O":"2","U":"http:\/\/www.tuf.co.nz\/page545057.html","N":"2008 Newsletters","T":"_top","R":"","RT":"_blank"},"a49949":{"P":48778,"ID":49953,"C":49949,"O":"17","U":"http:\/\/www.tuf.co.nz\/tuf-blog-page.html","N":"Blog","T":"_top","R":"","RT":"_blank"},"a119702":{"P":48778,"ID":119711,"C":119702,"O":"18","U":"http:\/\/www.tuf.co.nz\/access-e-learning.html","N":"Access e-learning ","T":"_top","R":"","RT":"_blank"},"a49590":{"P":48778,"ID":49591,"C":49590,"O":"19","U":"http:\/\/www.tuf.co.nz\/contact-us.html","N":"Contact Us","T":"_top","R":"","RT":"_blank"},"a527279":{"P":49590,"ID":527280,"C":527279,"O":"1","U":"http:\/\/www.tuf.co.nz\/tuf-cancellation.html","N":"Cancellation Policy","T":"_top","R":"","RT":"_blank"}},alignment:"Vertical",animate:0})});